body {
font-family: Verdana, Arial, sans-serif;
line-height: 1.7;
text-align: higth; /* Alinhamento à esquerda */
color: #333; 
max-width: 920px; /* Define a largura máxima */
margin: 0 auto; /* Centraliza o corpo */
padding: 0px; /* Adiciona um pouco de preenchimento */
border: 0px solid #333;
}

body {
    background: url('https://www.ebscom.com.br/img/PanoFundo.jpg') repeat;
}

.container_center {
  display: flex;
  justify-content: center; /* Centraliza na horizontal */
  align-items: center;    /* Centraliza na vertical */
  height: 100vh;          /* Faz o container ocupar 100% da altura da tela */
}

header {
    background-color: #F4FFC3;
    height: 130px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 1000;
}

nav {
    background: #809D3C;
    padding: 10px;
    border-radius: 8px;
    margin: 10px;
}

.nav_box {
    background: #fff;
    padding: 10px;
    border: 2px solid red;
    border-radius: 8px;
    margin: 0px;
}

.nav_menu {
    background: #F4A460;
    padding: 10px;
    border: 2px solid blue;
    border-radius: 8px;
    margin: 10px;
}

.menu {
    list-style-type: none; /* Remove os marcadores da lista */
    padding: 0; /* Remove o padding padrão */
    margin: 0; /* Remove a margem padrão */
    text-align: right;
    font-size: 16px;
    border-radius: 8px;
}

.menu li {
    display: inline; /* Alinha os itens em linha */
    margin-right: 20px; /* Espaçamento entre os itens */
}

.menu li a {
    text-decoration: none; /* Remove o sublinhado dos links */
    color: blue; /* Cor do texto */
}

.menu li a:hover {
    color: white; /* Cor ao passar o mouse */
}

.menu_center {
    list-style-type: none; /* Remove os marcadores da lista */
    padding: 0; /* Remove o padding padrão */
    margin: 0; /* Remove a margem padrão */
    text-align: center;
    font-size: 16px;
    border-radius: 8px;
}

.menu_center li {
    display: inline; /* Alinha os itens em linha */
    margin-right: 20px; /* Espaçamento entre os itens */
}

.menu_center li a {
    text-decoration: none; /* Remove o sublinhado dos links */
    color: blue; /* Cor do texto */
}

.menu_center li a:hover {
    color: white; /* Cor ao passar o mouse */
}

.menu_center li:last-child {
    margin-right: 0;
}

.menu_center_1 {
    list-style-type: none; /* Remove os marcadores da lista */
    padding: 0; /* Remove o padding padrão */
    margin: 0; /* Remove a margem padrão */
    text-align: center;
    font-size: 16px;
    border-radius: 8px;
}

.menu_center_1 li a {
    text-decoration: none; /* Remove o sublinhado dos links */
    color: blue; /* Cor do texto */
}

.menu_center_1 li a:hover {
    color: white; /* Cor ao passar o mouse */
}

.menu_center_1 li:last-child {
    margin-right: 0;
}

.box {
    width: 100%); /* Largura de cada box */
    padding: 5px;
    margin: 10px;
    background-color: #EEE8AA;
    border: 0;
    text-align: justify;
    border-radius: 8px;
}

.box_1 {
    width: 100%); /* Largura de cada box */
    padding: 25px;
    margin: 10px;
    background-color: #EEE8AA;
    border: 2px solid green;
    text-align: justify;
    border-radius: 8px;
}

h1 {
    text-align: center;
    font-size: 18px;
}
h2 {
    text-align: center;
    font-size: 18px;
}

.galeria-imagens {
  display: flex;
  gap: 26px;               /* Espaço entre as imagens */
  justify-content: center; /* Centraliza o grupo (remova se quiser alinhado à esquerda) */
  flex-wrap: wrap;         /* Permite que as imagens quebrem para a próxima linha em telas pequenas */
}

/* Opcional: garante que as imagens não distorçam e sejam responsivas */
.galeria-imagens img {
  max-width: 100%;
  height: auto;
}

/* Estilo das miniaturas */
.galeria-imagens img {
  cursor: pointer;
  transition: transform 0.2s ease;
}
.galeria-imagens img:hover {
  transform: scale(1.05);
}

/* Container do lightbox */
.lightbox {
  display: none; /* Altere para flex/block quando estiver visível */
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  flex-direction: column; /*  Importante: empilha imagem e legenda */
  padding: 20px;
  box-sizing: border-box;
}

/* Quando o lightbox estiver ativo (ajuste conforme seu método de abrir/fechar) */
.lightbox:target, 
.lightbox.active {
  display: flex;
}

/* Opcional: trava o scroll da página enquanto a imagem está aberta */
html:has(.lightbox:target) { overflow: hidden; }

/* Imagem */
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Legenda */
.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 0px;  /* troquei de 15 pra 0 */
  font-size: 1rem;
  line-height: 1.4;
  padding: 0 15px;
  max-width: 90%;
  font-family: sans-serif;
  opacity: 0.9;
}

/* Botão de fechar */
.close-btn {
  position: absolute;
  top: 5px;  /* troquei de 15 pra 5 */
  right: 25px;
  color: red;
  font-size: 2rem;
  text-decoration: none;
  cursor: pointer;
  z-index: 10000;
}

/*FORMULÁRIO*/
.form-container {
    background-color: #EEE8AA;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    width: 920x;
}
h2 {
    text-align: center;
}
label {
    margin-top: 10px;
    display: block;
}
input, textarea {
    width: 50%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    width: 50%;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    
}
button:hover {
    background-color: #218838;
}
/*FIM FORMULÁRIO*/

.contatos {
    list-style-type: none; /* Remove os marcadores da lista */
    padding: 0; /* Remove o padding padrão */
    margin: 0; /* Remove a margem padrão */
    text-align: center;
    font-size: 12px;
}

.contatos li {
    display: inline; /* Alinha os itens em linha */
    margin-right: 5px; /* Espaçamento entre os itens */
}

.whats{
    position: fixed;
    right: 31px;
    bottom: 31px;
}

.download-button {
    text-align: center; /* Centraliza o conteúdo inline */
    margin-top: 50px; /* Espaçamento superior */
    font-size: 31px;

}

.faixa-1 {
    list-style-type: none; /* Remove os marcadores da lista */
    padding: 0; /* Remove o padding padrão */
    margin: 0; /* Remove a margem padrão */
    text-align: center;
    font-size: 16px;
    border-radius: 8px;
}

.faixa-1 {
    background-color: #809D3C;
    /*height: 60px;*/
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 1000;
}